* {
    margin: 0;

    padding: 0;
    
}

body,
html {
    /* height: 100%; */
    /* width: 100%; */
    font-family: "Palanquin Dark", sans-serif;
    /* overflow-x: hidden; */
    /* overflow-x:hidden; */
}

/* .ourwork{
    align-items: center;
    justify-content: center;
/* background-color: #000000; */




h1 {
    font-weight: 300;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 15px;
}


.meeting_btn {
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 1000;
    padding: 10px 20px;
    border-radius: 15px;
    border: none;
    --border-width: clamp(1px, 0.0625em, 4px);
    /* all: unset; */
    cursor: pointer;
    pointer-events: auto;
    z-index: 3;
    background: linear-gradient(-75deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.05));
    border-radius: 999vw;
    box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
      inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
      0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2),
      0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(255, 255, 255, 1);
    /* backdrop-filter: blur(clamp(1px, 0.125em, 4px)); */
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
    color: #FFFFFF;
    
    
  }
  
  
  /* Shine Effect */
  .meeting_btn::after {
    content: "";
    display: block;
    /* position: absolute; */
    z-index: 1;
    width: calc(100% - var(--border-width));
    height: calc(100% - var(--border-width));
    top: calc(0% + var(--border-width) / 2);
    left: calc(0% + var(--border-width) / 2);
    box-sizing: border-box;
    border-radius: 999vw;
    background: linear-gradient(
      var(--angle-2),
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 40% 50%,
      rgba(255, 255, 255, 0) 55%
    );
    mix-blend-mode: screen;
    background-size: 200% 200%;
    background-position: 0% 50%;
    background-repeat: no-repeat;
    transition: background-position calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease),
      --angle-2 calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease);
      mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
  }
  
  .meeting_btn:hover::after {
    background-position: 25% 50%;
  }
  
  .meeting_btn:active ::after {
    background-position: 50% 15%;
    --angle-2: -15deg;
  }
  .meeting_btn:hover {
    color: #000000;
    background: linear-gradient(
      135deg,
      /* rgba(255, 255, 0, 0.2), */
      rgba(255, 255, 0, 0.4)
    ) !important;
    /* backdrop-filter: blur(6px); */
    /* -webkit-backdrop-filter: blur(6px); */
    box-shadow:
      /* inset 0 0.125em 0.125em rgba(255, 255, 0, 0.2), */
      /* inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.6), */
      0 0.25em 0.125em -0.125em rgba(255, 255, 0, 0.5),
      /* 0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.3); */
    /* transition: all var(--anim--hover-time) var(--anim--hover-ease); */
  }
  


.cross{
    display: none;
    position: fixed;
    top: calc(50% - 170px);
    left: calc(50% + 290px);
    z-index: 10000;
    width: 50px;
    height: 50px;
}


#line1{
    height: 3px;
    width: 35px;
    background-color: white;
    transform: rotate(-48deg);
}

#line2{
    height: 3px;
    width: 35px;
    background-color: white;
    transform: rotate(45deg);

}


.form-container {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    color: yellow;
    width: 600px;
    height: 400px;
    text-align: center;
    /* border: 2px solid yellow; */
    box-shadow: 0px 0px 15px 8px rgba(255, 255, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 10000;
    top: calc(50% - 150px);
    left: calc(50% - 300px);
    filter: unset;
    cursor: pointer;
    animation: blinkout 0.2s infinite;
}
.form-container:hover{
    animation: blinkout 0.1s infinite;
    cursor: pointer;
} 

@keyframes blinkout{
0%{outline:4px solid  rgba(255, 255, 0, 0.4);}
50%{outline:4px solid transparent;}
100%{outline:4px solid  rgba(255, 255, 0, 0.4);}
}
.form-container h3{
    /* text-align: center; */
    margin-bottom: 25px;
}
.form-container label{
    color: white;
    /* text-align: left; */
    float: left;
    margin-left: 30px;
    width: 150px;
    text-align: left;
    font-size: 14px;
        
}
.form-container input {
    width: 88%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    background: #333;

}
.form-container button {
    background: yellow;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor:pointer ;
    /* margin: 0px auto; */
    margin-top: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    z-index: 100;
    transition: background-color 0.3s;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 350px;
    width: 144px;
    padding: 0 0px;
}


/* Header background change */

.header-scrolled {
    background-color: #000000;
}

.showcase {
    position: relative;
    height: 100vh;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 150px;
    /* color: rgb(255, 255, 255); */
    overflow: hidden;
}

.content {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 200px;
}

.video-container {
    position: absolute;
    /* top: 0;
    left: 0;  */
    object-fit: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
}

.wide_video {
    width: 100%;
    /* Adjust width as needed */
    height: 100%;
    /* Maintain aspect ratio */
    object-fit: cover;
    /* position: absolute; */
    /* top: 50%;
    left: 50%; */
    transform: translate(-50%, -50%);
    background-color: rgb(0, 0, 0);
    /* z-index: 999; */
}

.video-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.79);
}

.content {
    z-index: 10;

}

h2 {
    text-align: center;
    font-weight: 100;
    margin: 10px 0;
}

h2 {
    /* font-family: "Raleway Dots", sans-serif; */
    font-size: 2.5em;
    color: #FFFFFF;
}


.logo {
    width: 100px;
    margin-top: 6px;
    margin-left: 6px;
    cursor: pointer;
}

.portrait_video{
    display: none;
}
.wide_video{
    display: absolute;
}





@media only screen and (max-width:800px) {

    /* For tablets: */
    .content {
        /* width: 80%; */
        padding: 10px;
        margin-top: 200px;
    }

    .logo {
        width: 15%;
    }


} 


.what {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-color: #000000;
}


.contact {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 80px;
    color: rgb(247, 245, 245);
    background-color: #011822;
}


.footer {
    font-size: 18px;
    width: 100%;
    background-color: #000000;
    color: #fff;
    /* padding: 30px 0; */
    border-radius: 1px;
}



@media screen and (max-width:768px) {

    .meeting_btn{
        right: 10px;
        bottom: 10px;
        padding: 10px;
        cursor: pointer;
    }
    .image-es img{
      height: 260px;
    }

    .cross{
        left:calc(50% + 155px) ;
    }

    .form-container{
        width: 300px;
        left: calc(50% - 150px);
        cursor:pointer;
        animation: blinkout 0.1s infinite;
             }
            
            @keyframes blinkout{
                0%{outline:4px solid  rgba(255, 255, 0, 0.4);}
                50%{outline:4px solid transparent;}
                100%{outline:4px solid  rgba(255, 255, 0, 0.4);}
                }
    }

    .showcase {
        justify-content: center;
        align-items: center;
    }

    .content {
        margin-right: -454px;
        /* font-family: "Raleway dots"; */
    }

    .content {
        /* width: 80%; */
        padding: 10px;
        margin-left: -445px;
        /* margin-top: 200px;; */
    }

    .logo {
        width: 20%;
    }

    .content h2 {
        /* font-size: 1.0rem; */
        margin-top: 3px;
         font-family: "Raleway dots";
    }

    h1 {
        /* font-size: 1.3em; */
        font-size: 30px;
    }
    .contact {
        flex-direction: column;
        padding: 45px;
        color: rgb(247, 245, 245);
    background-color: #011822;
    }

    .video-container {
        width: 100%;
        /* width: 767px; */
    }

    .portrait_video{
        /* display: block; */
        display: flex;
        overflow: hidden;
        object-fit: fill  ;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgb(0, 0, 0);

        /* position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-color: rgb(0, 0, 0); */
    }
    .wide_video{
        /* display: none; */
        display: flex;
        position: absolute;
    }



@media screen and (min-width:768px) and (max-width:990px) {

    .content {
        /* margin-top: 0px; */
        font-family: "Railway dot",sans-serif;
    }

    #mouse-scroll {
        margin-top: 135px;
        margin-left: 0px;
    }
} 




@media screen and (min-width:900px) and (max-width:1024px) {
    .content h1 {
        font-size: 50px;
    }
}



@media screen and (max-width:600px) {
    .content h1 {
        font-size: 22px;
    }
    .subtitle p{
        font-size: 12px;
    }

    .content h2 {
        font-size: 1.5rem;
        font-family:'Raleway dots';
    }

}

@media screen and (min-width:600px) {
    .content h1{
        font-size: 58px;
    }
}


@media screen and (max-width:400px) {
    .cross{
        left: calc(50% + 127px);
    }
    .meeting_btn{
        cursor: pointer;
    }
    .form-container{
        width: 250px;
        left: calc(50% - 125px);
        cursor:pointer;
        animation: blinkout 0.1s infinite;
         }
         /* .form-container:hover{
            animation: blinkout 0.1s infinite;
        } */
        @keyframes blinkout{
            0%{outline:4px solid  rgba(255, 255, 0, 0.4);}
            50%{outline:4px solid transparent;}
            100%{outline:4px solid  rgba(255, 255, 0, 0.4);}
            }
    }
    
   
      
      .odometer.plus {
        position: relative;
      }
      
      .odometer.plus::after {
        content: "+";
        position: absolute;
        top: 0;
        right: -16px;
        font-size: 20px;
      }
      

      .title-heading {
        font-size: 3rem; /* Tailwind's text-5xl */
        font-weight: bold;
        color: white;
        margin-bottom: 1.5rem;
        font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
      }
      
      @media (min-width: 768px) {
        .title-heading {
          font-size: 4.5rem; /* Tailwind's text-7xl */
        }
      }
      
      .highlight-text {
        color: #facc15; /* Tailwind's text-yellow-400 */
        margin-left: 1rem; /* Tailwind's ml-4 */
      }
      
      /* Optional: mimic 'sketch-text' if you have styles for that */
      .sketch-text {
        font-family: 'Comic Sans MS', cursive, sans-serif;
        text-shadow: 1px 1px 0 black;
      }
      

      .subtitle {
        font-size: 1.25rem;
        color: #2c2c2c;
        max-width: 600px;
        margin: 0 auto 20px; /* <-- centers the block */
        text-align: center;  /* <-- centers the text inside */
        padding: 0 1rem;     /* <-- optional: adds side padding for mobile */
      }
      
      .cta-button {
        display: inline-flex;
        align-items: center;
        padding: 0.75rem 2rem;
        background-color: rgb(0 0 0 / 10%);
        border: 1px solid rgb(0 0 0 / 15%);
        color: #000000;
        border-radius: 9999px;
        font-weight: 500;
        text-decoration: none;
        transition: background-color 0.3s ease;
        margin-bottom: 60px;
      }
      
      .cta-button:hover {
        background-color: #000000;
        color: #fffafa;
      }
      
      .cta-button i {
        margin-left: 0.5rem;
      }
      .cta-button_1 {
        display: inline-flex;
        align-items: center;
        padding: 0.75rem 2rem;
        background-color: transparent;
        color: #facc15;
        border: 2px solid #facc15;
        border-radius: 9999px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 0 10px #8a8a8a;
      }
         .cta-button_0 {
        display: inline-flex;
        align-items: center;
        padding: 0.75rem 2rem;
        background-color: transparent;
        color: #facc15;
        border: 2px solid #facc15;
        border-radius: 9999px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 0 10px #8a8a8a;
      }
      
      .cta-button_1:hover {
        background-color: #facc15;
        color: black;
        box-shadow: 0 0 20px #facc15, 0 0 30px #facc15;
      }
      .cta-button_0:hover {
        background-color: #facc15;
        color: black;
        box-shadow: 0 0 20px #facc15, 0 0 30px #facc15;
      }
      
      .cta-button_1 i {
        margin-left: 0.5rem;
      }
      .cta-button_0 i {
        margin-left: 0.5rem;
      }
      
/* FADEOUT */

/* FADEOUT */
.content, .tab-layout, .cd,
.techno-section, .showcase-section, .section1,
.services-section, .expertise-section, .testimonial-section,
.accordion, .contact-section, .clint, .moused {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.content.faded, .tab-layout.faded, .cd.faded,
.techno-section.faded, .showcase-section.faded, .section1.faded,
.services-section.faded, .clint.faded, .expertise-section.faded, .testimonial-section.faded,
.accordion.faded, .contact-section.faded, .moused.faded {
  opacity: 0;
}

@media (max-width: 767px) {
  /* Prevent fade-out effect in mobile view */
  .content.faded, .tab-layout.faded, .cd.faded,
  .techno-section.faded, .showcase-section.faded, .section1.faded,
  .services-section.faded, .clint.faded, .expertise-section.faded, .testimonial-section.faded,
  .accordion.faded, .contact-section.faded, .moused.faded {
    opacity: 1 !important; /* Prevent opacity change */
  }
}





.stat {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When in view */
.stat.zoomed {
  opacity: 1;
  transform: scale(1);
}
